home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group93a.txt / 000014_icon-group-sender _Tue Jan 12 12:46:33 1993.msg < prev    next >
Internet Message Format  |  1993-04-21  |  988b

  1. Received: by cheltenham.cs.arizona.edu; Tue, 12 Jan 1993 12:50:30 MST
  2. Date: Tue, 12 Jan 1993 12:46:33 MST
  3. From: "Ralph Griswold" <ralph>
  4. Message-Id: <199301121946.AA07878@cheltenham.cs.arizona.edu>
  5. To: ucivax!omalley@ucbvax.Berkeley.EDU
  6. Subject: Re:  Putting strings into executables
  7. Cc: icon-group
  8. Status: R
  9. Errors-To: icon-group-errors@cs.arizona.edu
  10.  
  11. Literal strings in Icon programs are placed, uncompressed, in the
  12. icode ("exectuable") file produced by icont.  They will be at
  13. the end of the file, so you need (at least on our system)
  14.  
  15.     strings - foo
  16.  
  17. where foo is produced by
  18.  
  19.     icont foo.icn
  20.  
  21. It might be wise to surround the literal with nulls or newlines to
  22. be sure strings(1) finds it -- I'm not sure that such strings are
  23. automatically null-terminated by icont.
  24.     
  25. Ralph E. Griswold            ralph@cs.arizona.edu
  26. Department of Computer Science          uunet!arizona!ralph
  27. The University of Arizona        602-621-6609 (voice)
  28. Tucson, AZ 85721            602-621-9618   (fax)
  29.